home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / BUSINESS / ARCH_C41.ARJ / APPENDX.BAT < prev    next >
DOS Batch File  |  1990-09-10  |  384b  |  18 lines

  1. ECHO OFF
  2. CLS
  3. ECHO This will append a PAUSE statement to AUTOEXEC.BAT on drive C:
  4. ECHO  
  5. PAUSE
  6. CLS
  7. IF EXIST C:\AUTOEXEC.BAT GOTO REPLACE
  8. ECHO No AUTOEXEC.BAT file exists on Drive C
  9. GOTO RUN
  10. :REPLACE
  11. COPY APPENDX TMP
  12. COPY TMP + C:\AUTOEXEC.BAT 
  13. COPY TMP C:\AUTOEXEC.BAT
  14. REM GOTO RUN
  15. :RUN
  16. ECHO  
  17.  
  18.